Stored Procedures [dbo].[BAEWriteHistory]
Properties
PropertyValue
ANSI Nulls OnYes
Quoted Identifier OnYes
Parameters
NameData TypeMax Length (Bytes)
@pIPvarchar(128)128
@pDescriptionvarchar(1024)1024
@pEventTypevarchar(256)256
SQL Script
create procedure [dbo].[BAEWriteHistory] @pIP as
varchar(128),
    @pDescription as varchar(1024),
    @pEventType as varchar(256)
AS
    INSERT INTO History
    (History.EventDate, History.IP, History.[Description], History.EventType)
    VALUES
    (GETDATE(), @pIP, @pDescription, @pEventType)

GO
Uses